Welcome to Css!

10.02 表格属性

1、单元格间隔,设置相邻的单元格间隔

border-spacing: 水平间隔 垂直间隔

2、边框折叠

border-collapse: collapse| separate

separete:默认值,边框会分开

collapse:边框会合并

3、表格宽高:width 300px;height:200px

4、表格文件对齐:text-align vertical-align

5、表格背景:background:blue


<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title>css</title>

<style type="text/css">

</style>

</head>

<body>

<table border="1">

<tr>

<td>我要好好学习1</td>

<td>我要好好学习2</td>

<td>我要好好学习3</td>

</tr>

<tr>

<td>我要好好学习1</td>

<td>我要好好学习2</td>

<td>我要好好学习3</td>

</tr>

</table>

</body>

</html>

返回值:

table{

border-spacing:20px 40px;

}

table{

border-spacing:20px 40px;

border-collapse:collapse;

width 300px;height:200px;

background:#E1EFFF;

}

返回值: